Skip to main content

GetAllImages

Returns all images from the current sheet.

Syntax

expression.GetAllImages();

expression - A variable that represents a ApiWorksheet class.

Parameters

This method doesn't have any parameters.

Returns

ApiImage[]

Example

This example shows how to get all images from the sheet.

var oWorksheet = Api.GetActiveSheet();
oWorksheet.AddImage("https://api.onlyoffice.com/content/img/docbuilder/examples/coordinate_aspects.png", 60 * 36000, 35 * 36000, 0, 2 * 36000, 0, 3 * 36000);
var aImages = oWorksheet.GetAllImages();
var sClassType = aImages[0].GetClassType();
oWorksheet.GetRange("A10").SetValue("Class Type = " + sClassType);